home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / ABUSESRC.ZIP / AbuseSrc / abuse / inc / config.hpp < prev    next >
C/C++ Source or Header  |  1996-01-24  |  488b  |  17 lines

  1. #ifndef __CONFIG_HPP_
  2. #define __CONFIG_HPP_
  3.  
  4. enum { HIGH_DETAIL,
  5.        MEDIUM_DETAIL,
  6.        LOW_DETAIL,
  7.        POOR_DETAIL };
  8.  
  9.  
  10. void key_bindings(int player, int &left, int &right, int &up, int &down, int &b1, int &b2, int &b3,  int &b4);
  11. void get_key_bindings();
  12. void get_movement(int player, int &x, int &y, int &b1, int &b2, int &b3, int &b4);
  13. void config_cleanup();  // free any memory allocated
  14. int get_keycode(char *str);  // -1 means not a valid key code
  15.  
  16. #endif
  17.